:root {
    --gold: #E7C873;
    --gold-light: #F0DBA7;
    --gold-dark: #D9B04C;
    --dark-bg: #f8f9fa;
    --card-bg: #ffffff;
    --text-light: #1e1e1e;
    --text-primary: #E7C873;
    --dark: #1a2530;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --transition: all 0.3s ease;
    --primary: #1a2530;
    /* Added primary color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-subtitle,
.step-title,
.step-desc,
.testimonial-text,
.client-name,
.contact-item h3,
.tagline,
.portfolio-card .overlay-content h4,
.portfolio-card .overlay-content p {
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

/* Added button styles */
.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* General Navbar */
#navbar {
    transition: background-color 0.6s, box-shadow 0.3s;
    background-color: transparent;
    z-index: 999;
}

#navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    color: rgb(255, 157, 0);
    font-weight: 500;
    transition: color 0.3s ease;
}

#navbar.scrolled .nav-link {
    color: #fffbfb;
}

.navbar .nav-link.active {
    font-weight: 700;
    color: var(--gold);
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 240px;
    transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: rgb(255, 157, 0);
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: rgb(255, 243, 220);
    color: #000;
    font-weight: 600;
    border-left: 4px solid rgb(255, 157, 0);
}

/* Dropdown arrow */
.navbar .nav-link.dropdown-toggle::after {
    border-top-color: rgb(255, 157, 0);
    margin-left: 6px;
}

/* Scrolled navbar dropdown behavior */
#navbar.scrolled .dropdown-menu .dropdown-item {
    color: #000;
}

#navbar.scrolled .dropdown-menu .dropdown-item:hover {
    background-color: rgb(255, 236, 202);
    color: rgb(255, 157, 0);
}

/* Fade-in dropdown animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.show>.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile specific tweaks */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff;
        border-radius: 0 0 12px 12px;
        padding: 1rem;
    }

    .navbar .nav-link,
    .navbar .dropdown-menu .dropdown-item {
        color: #000 !important;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding-left: 1rem;
    }

    .navbar .dropdown-menu .dropdown-item {
        padding: 8px 0;
        border-left: 3px solid transparent;
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: transparent;
        color: rgb(255, 157, 0);
        border-left-color: rgb(255, 157, 0);
    }
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/Interior-pages/Portfolio/Projects/images/VGN\ Fairmont\ Guindy.PNG');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 0 80px;
    /* Increased padding for better spacing */
    text-align: center;
}

.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.project-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.project-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 1.7rem;
    margin-bottom: 5px;
}

.highlight-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Project Description Section */
.project-description {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: var(--primary);
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.description-text {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousels Section */
.carousels-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.carousels-section .section-title {
    margin-bottom: 60px;
}

.carousel-container {
    margin-bottom: 70px;
}

.carousel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.carousel-title i {
    margin-right: 12px;
    color: var(--gold);
    font-size: 1.4rem;
}

.carousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 550px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(247, 247, 247, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2070&auto=format&fit=crop') center/cover;
}

.contact-section .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 50px;
    font-weight: 400;
}

.contact-container {
    display: flex;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.contact-form {
    flex: 1;
    padding: 60px;
    background: var(--card-bg);
}

.contact-info {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(231, 200, 115, 0.1);
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(231, 200, 115, 0.05);
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

input,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(231, 200, 115, 0.2);
    outline: none;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

.optional {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
}

.info-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: white;
    position: relative;
    padding-bottom: 20px;
    z-index: 2;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 3px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    background: var(--gold);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon i {
    font-size: 1.4rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.contact-details p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

.hours {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
    background: linear-gradient(to right, #1a2530, #2c3e50);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 50px;
    margin-right: 15px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.footer p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-info-item {
    display: flex;
    margin-bottom: 18px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(231, 200, 115, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .project-title {
        font-size: 3rem;
    }

    .carousel {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .project-title {
        font-size: 2.5rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .carousel {
        height: 450px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        border-bottom: 1px solid var(--light-gray);
    }
}

@media (max-width: 768px) {
    header {
        padding: 120px 0 60px;
    }

    .project-title {
        font-size: 2.2rem;
    }

    .highlight-card {
        min-width: 160px;
        padding: 20px 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .carousel {
        height: 400px;
    }

    .contact-form,
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }

    .project-highlights {
        gap: 15px;
    }

    .highlight-card {
        min-width: 140px;
        padding: 15px 10px;
    }

    .highlight-card i {
        font-size: 1.8rem;
    }

    .highlight-card h3 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .carousel {
        height: 300px;
    }

    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }

    .footer-logo span {
        font-size: 1.3rem;
    }
}